Repeat loop

repeat
  ...
until condition;

example: 
repeat
  i = i + 1;
until i <= 5;